home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 2).iso / 0038 / vc.zip / VC.RC < prev    next >
Text File  |  1996-01-20  |  9KB  |  256 lines

  1. //Microsoft App Studio generated resource script.
  2. //
  3. #include "resource.h"
  4.  
  5. #define APSTUDIO_READONLY_SYMBOLS
  6. /////////////////////////////////////////////////////////////////////////
  7. //
  8. // Generated from the TEXTINCLUDE 2 resource.
  9. //
  10. #include "afxres.h"
  11.  
  12. /////////////////////////////////////////////////////////////////////////////////////
  13. #undef APSTUDIO_READONLY_SYMBOLS
  14.  
  15. #ifdef APSTUDIO_INVOKED
  16. //////////////////////////////////////////////////////////////////////////////
  17. //
  18. // TEXTINCLUDE
  19. //
  20.  
  21. 1 TEXTINCLUDE DISCARDABLE 
  22. BEGIN
  23.     "resource.h\0"
  24. END
  25.  
  26. 2 TEXTINCLUDE DISCARDABLE 
  27. BEGIN
  28.     "#include ""afxres.h""\r\n"
  29.     "\0"
  30. END
  31.  
  32. 3 TEXTINCLUDE DISCARDABLE 
  33. BEGIN
  34.     "#include ""res\\vc.rc2""  // non-App Studio edited resources\r\n"
  35.     "\r\n"
  36.     "#include ""afxres.rc""  \011// Standard components\r\n"
  37.     "\0"
  38. END
  39.  
  40. /////////////////////////////////////////////////////////////////////////////////////
  41. #endif    // APSTUDIO_INVOKED
  42.  
  43.  
  44. //////////////////////////////////////////////////////////////////////////////
  45. //
  46. // Icon
  47. //
  48.  
  49. IDR_MAINFRAME           ICON    DISCARDABLE     "RES\\VC.ICO"
  50.  
  51. //////////////////////////////////////////////////////////////////////////////
  52. //
  53. // Menu
  54. //
  55.  
  56. IDR_MAINFRAME MENU PRELOAD DISCARDABLE 
  57. BEGIN
  58.     POPUP "&File"
  59.     BEGIN
  60.         MENUITEM SEPARATOR
  61.         MENUITEM "E&xit",                       ID_APP_EXIT
  62.     END
  63.     POPUP "&Help"
  64.     BEGIN
  65.         MENUITEM "&About Vc...",                ID_APP_ABOUT
  66.     END
  67. END
  68.  
  69.  
  70. //////////////////////////////////////////////////////////////////////////////
  71. //
  72. // Accelerator
  73. //
  74.  
  75. IDR_MAINFRAME ACCELERATORS PRELOAD MOVEABLE PURE 
  76. BEGIN
  77.     "N",            ID_FILE_NEW,            VIRTKEY,CONTROL
  78.     "O",            ID_FILE_OPEN,           VIRTKEY,CONTROL
  79.     "S",            ID_FILE_SAVE,           VIRTKEY,CONTROL
  80.     "Z",            ID_EDIT_UNDO,           VIRTKEY,CONTROL
  81.     "X",            ID_EDIT_CUT,            VIRTKEY,CONTROL
  82.     "C",            ID_EDIT_COPY,           VIRTKEY,CONTROL
  83.     "V",            ID_EDIT_PASTE,          VIRTKEY,CONTROL
  84.     VK_BACK,        ID_EDIT_UNDO,           VIRTKEY,ALT
  85.     VK_DELETE,      ID_EDIT_CUT,            VIRTKEY,SHIFT
  86.     VK_INSERT,      ID_EDIT_COPY,           VIRTKEY,CONTROL
  87.     VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY,SHIFT
  88.     VK_F6,          ID_NEXT_PANE,           VIRTKEY 
  89.     VK_F6,          ID_PREV_PANE,           VIRTKEY,SHIFT
  90. END
  91.  
  92.  
  93. //////////////////////////////////////////////////////////////////////////////
  94. //
  95. // Dialog
  96. //
  97.  
  98. IDD_ABOUTBOX DIALOG DISCARDABLE  34, 22, 217, 55
  99. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  100. CAPTION "About Vc"
  101. FONT 8, "MS Sans Serif"
  102. BEGIN
  103.     ICON            IDR_MAINFRAME,IDC_STATIC,11,17,18,20
  104.     LTEXT           "Global Majic Software, Inc.",IDC_STATIC,40,10,119,8
  105.     LTEXT           "Copyright \251 1996",IDC_STATIC,40,40,119,8
  106.     DEFPUSHBUTTON   "OK",IDOK,176,6,32,14,WS_GROUP
  107.     LTEXT           "http://www.globalmajic.com",IDC_STATIC,40,20,119,8
  108. END
  109.  
  110. IDD_VC_FORM DIALOG DISCARDABLE  0, 0, 289, 220
  111. STYLE WS_CHILD
  112. FONT 8, "MS Sans Serif"
  113. BEGIN
  114.     CONTROL         "CAR25.VBX;CAR;Car1",IDC_CAR1,"VBControl",
  115.                     WS_CLIPSIBLINGS | WS_TABSTOP,4,4,110,117
  116.     CONTROL         "CAR25.VBX;CAR;Car1",IDC_CAR2,"VBControl",
  117.                     WS_CLIPSIBLINGS | WS_TABSTOP,120,4,110,117
  118. END
  119.  
  120.  
  121. //////////////////////////////////////////////////////////////////////////////
  122. //
  123. // String Table
  124. //
  125.  
  126. STRINGTABLE PRELOAD DISCARDABLE 
  127. BEGIN
  128.     IDR_MAINFRAME           "Vc Windows Application\nVc\nVc Document\n\n\nVc.Document\nVc Document"
  129. END
  130.  
  131. STRINGTABLE PRELOAD DISCARDABLE 
  132. BEGIN
  133.     AFX_IDS_APP_TITLE       "Vc Windows Application"
  134.     AFX_IDS_IDLEMESSAGE     "Ready"
  135. END
  136.  
  137. STRINGTABLE DISCARDABLE 
  138. BEGIN
  139.     ID_INDICATOR_EXT        "EXT"
  140.     ID_INDICATOR_CAPS       "CAP"
  141.     ID_INDICATOR_NUM        "NUM"
  142.     ID_INDICATOR_SCRL       "SCRL"
  143.     ID_INDICATOR_OVR        "OVR"
  144.     ID_INDICATOR_REC        "REC"
  145. END
  146.  
  147. STRINGTABLE DISCARDABLE 
  148. BEGIN
  149.     ID_FILE_NEW             "Create a new document"
  150.     ID_FILE_OPEN            "Open an existing document"
  151.     ID_FILE_CLOSE           "Close the active document"
  152.     ID_FILE_SAVE            "Save the active document"
  153.     ID_FILE_SAVE_AS         "Save the active document with a new name"
  154. END
  155.  
  156. STRINGTABLE DISCARDABLE 
  157. BEGIN
  158.     ID_APP_ABOUT            "Display program information, version number and copyright"
  159.     ID_APP_EXIT             "Quit the application; prompts to save documents"
  160. END
  161.  
  162. STRINGTABLE DISCARDABLE 
  163. BEGIN
  164.     ID_FILE_MRU_FILE1       "Open this document"
  165.     ID_FILE_MRU_FILE2       "Open this document"
  166.     ID_FILE_MRU_FILE3       "Open this document"
  167.     ID_FILE_MRU_FILE4       "Open this document"
  168. END
  169.  
  170. STRINGTABLE DISCARDABLE 
  171. BEGIN
  172.     ID_NEXT_PANE            "Switch to the next window pane"
  173.     ID_PREV_PANE            "Switch back to the previous window pane"
  174. END
  175.  
  176. STRINGTABLE DISCARDABLE 
  177. BEGIN
  178.     ID_EDIT_CLEAR           "Erase the selection"
  179.     ID_EDIT_CLEAR_ALL       "Erase everything"
  180.     ID_EDIT_COPY            "Copy the selection and put it on the Clipboard"
  181.     ID_EDIT_CUT             "Cut the selection and put it on the Clipboard"
  182.     ID_EDIT_FIND            "Find the specified text"
  183.     ID_EDIT_PASTE           "Insert Clipboard contents"
  184.     ID_EDIT_REPEAT          "Repeat the last action"
  185.     ID_EDIT_REPLACE         "Replace specific text with different text"
  186.     ID_EDIT_SELECT_ALL      "Select the entire document"
  187.     ID_EDIT_UNDO            "Undo the last action"
  188.     ID_EDIT_REDO            "Redo the previously undone action"
  189. END
  190.  
  191. STRINGTABLE DISCARDABLE 
  192. BEGIN
  193.     AFX_IDS_SCSIZE          "Change the window size"
  194.     AFX_IDS_SCMOVE          "Change the window position"
  195.     AFX_IDS_SCMINIMIZE      "Reduce the window to an icon"
  196.     AFX_IDS_SCMAXIMIZE      "Enlarge the window to full size"
  197.     AFX_IDS_SCNEXTWINDOW    "Switch to the next document window"
  198.     AFX_IDS_SCPREVWINDOW    "Switch to the previous document window"
  199.     AFX_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
  200. END
  201.  
  202. STRINGTABLE DISCARDABLE 
  203. BEGIN
  204.     AFX_IDS_SCRESTORE       "Restore the window to normal size"
  205.     AFX_IDS_SCTASKLIST      "Activate Task List"
  206. END
  207.  
  208.  
  209. //////////////////////////////////////////////////////////////////////////////
  210. //
  211. // Dialog Info
  212. //
  213.  
  214. IDD_VC_FORM DLGINIT
  215. BEGIN
  216.     1000, 0x400, 190, 0
  217. 0x0000, 0x0200, 0x000b, 0x080c, 0x4449, 0x5f43, 0x4143, 0x3152, 0x3d0d, 
  218. 0x07ff, 0x0000, 0x0000, 0xbc00, 0x0002, 0x0000, 0x0100, 0x0202, 0x5322, 
  219. 0x7379, 0x6574, 0x006d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  220. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1300, 0x0000, 0x4020, 
  221. 0x0115, 0x0216, 0x1700, 0x1801, 0x1902, 0x0002, 0x001a, 0x001b, 0x0000, 
  222. 0x1c00, 0x0000, 0x001d, 0x001e, 0x9a1f, 0x1999, 0x203e, 0x8080, 0x0080, 
  223. 0x0021, 0xff00, 0x2200, 0x0000, 0x0000, 0xff23, 0xffff, 0x2400, 0xffff, 
  224. 0x0000, 0x0025, 0x0000, 0x2600, 0x0000, 0x0027, 0x0028, 0x0000, 0x2900, 
  225. 0x0000, 0x0000, 0x002a, 0x0000, 0x2b00, 0x0000, 0x012c, 0x012d, 0x002e, 
  226. 0xa000, 0x2f40, 0x0000, 0x40c0, 0x0030, 0x2000, 0x3141, 0x0000, 0x0000, 
  227. 0x0032, 0x8000, 0x333f, 0x3601, 0xff00, 
  228.     1001, 0x400, 190, 0
  229. 0x0000, 0x0200, 0x000b, 0x080c, 0x4449, 0x5f43, 0x4143, 0x3252, 0x3d0d, 
  230. 0x07ff, 0x0000, 0x0000, 0xbc00, 0x0002, 0x0000, 0x0100, 0x0202, 0x5322, 
  231. 0x7379, 0x6574, 0x006d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  232. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1300, 0x0000, 0x4020, 
  233. 0x0115, 0x0216, 0x1700, 0x1801, 0x1902, 0x0002, 0x001a, 0x001b, 0x0000, 
  234. 0x1c00, 0x0000, 0x001d, 0x001e, 0x9a1f, 0x1999, 0x203e, 0x8080, 0x0080, 
  235. 0x0021, 0xff00, 0x2200, 0x0000, 0x0000, 0xff23, 0xffff, 0x2400, 0xffff, 
  236. 0x0000, 0x0025, 0x0000, 0x2600, 0x0000, 0x0027, 0x0028, 0x0000, 0x2900, 
  237. 0x0000, 0x0000, 0x002a, 0x0000, 0x2b00, 0x0000, 0x002c, 0x012d, 0x002e, 
  238. 0x0000, 0x2f00, 0x0000, 0x425c, 0x0030, 0x1600, 0x3143, 0x0000, 0x0000, 
  239. 0x0032, 0x2000, 0x3341, 0x3601, 0xff01, 
  240.     0
  241. END
  242.  
  243.  
  244. #ifndef APSTUDIO_INVOKED
  245. ////////////////////////////////////////////////////////////////////////////////
  246. //
  247. // Generated from the TEXTINCLUDE 3 resource.
  248. //
  249. #include "res\vc.rc2"  // non-App Studio edited resources
  250.  
  251. #include "afxres.rc"      // Standard components
  252.  
  253. /////////////////////////////////////////////////////////////////////////////////////
  254. #endif    // not APSTUDIO_INVOKED
  255.  
  256.